home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / xpk_source / xpkmaster / xpk_strings.c < prev    next >
C/C++ Source or Header  |  1998-02-08  |  2KB  |  77 lines

  1. #ifndef XPKMASTER_XPK_STRINGS_C
  2. #define XPKMASTER_XPK_STRINGS_C
  3.  
  4. /* Routinesheader
  5.  
  6.     Name:        xpk_strings.c
  7.     Main:        xpkmaster
  8.     Versionstring:    $VER: xpk_strings.c 1.5 (21.01.1998)
  9.     Author:        SDI
  10.     Distribution:    Freeware
  11.     Description:    all library texts
  12.  
  13.  1.0   07.10.96 : first real version
  14.  1.1   28.12.96 : added password requester strings
  15.  1.2   09.03.97 : a new string
  16.  1.3   31.03.97 : moved unknown error into err field
  17.  1.4   19.12.97 : code cleanup
  18.  1.5   21.01.98 : added new texts
  19. */
  20.  
  21. #include <exec/types.h>
  22.  
  23. STRPTR strings[] = {
  24. "Packing",
  25. "Packed",
  26. "Unpacking",
  27. "Unpacked",
  28. "Reading",
  29. "Read",
  30. "Aborted",
  31. "Enter password",
  32. "Enter %ld bit key",
  33. "preferences setable packing and encrypting.",
  34. "Retype for verification",
  35. };
  36.  
  37. STRPTR XpkErrs[] =
  38. {
  39.   "OK",
  40.   "Feature not implemented in selected library",
  41.   "Function may not be used with files",
  42.   "Error reading input",
  43.   "Error writing output",
  44.   "Check sum failure",        /* 5 */
  45.   "Library too old for this file",
  46.   "Out of memory",
  47.   "Library already in use",
  48.   "Can't find decompressor for this format",
  49.   "Output buffer too small",    /* 10 */
  50.   "Input buffer too large",
  51.   "This packing mode not supported",
  52.   "Password required",
  53.   "Input file is corrupt",
  54.   "Can't find required XPK library",    /* 15 */
  55.   "Bad internal parameters",
  56.   "Data cannot be compressed",
  57.   "Requested compression method not found",
  58.   "Operation aborted by user",
  59.   "Input file truncated",    /* 20 */
  60.   "MC68020 or better required",
  61.   "Data already compressed",
  62.   "Data not compressed",
  63.   "Output file already exists",
  64.   "Master library too old",    /* 25 */
  65.   "Sub library too old",
  66.   "This library cannot encrypt",
  67.   "Can't get info",
  68.   "This compression method is lossy",
  69.   "Compression hardware required",    /* 30 */
  70.   "Compression hardware failed",
  71.   "Password incorrect",
  72.   "Unknown error",
  73.   "Automatic request time out",
  74. };
  75.  
  76. #endif /* XPKMASTER_XPK_STRING_C */
  77.